home *** CD-ROM | disk | FTP | other *** search
/ Spiceworld The Movie - Interactive CD-ROM / Spiceworld The Movie: Interactive CD-ROM.iso / pc / elements / spicetwo.dir / scripts_171.ls < prev    next >
Encoding:
Text File  |  1997-12-04  |  493 b   |  27 lines

  1. on prepareFrame
  2.   global LOOPFRAME
  3.   if not (LOOPFRAME = the frameLabel) then
  4.     initialiseFrame()
  5.     puppetSound("clapping")
  6.     set the visible of sprite 3 to 0
  7.   end if
  8. end
  9.  
  10. on enterFrame
  11.   setScore()
  12.   startTimer()
  13.   repeat while the timer < 100
  14.   end repeat
  15.   repeat with x = 1 to 10
  16.     startTimer()
  17.     set the visible of sprite 3 to not (the visible of sprite 3)
  18.     updateStage()
  19.     repeat while the timer < 20
  20.     end repeat
  21.   end repeat
  22. end
  23.  
  24. on exitFrame
  25.   go("albert hall")
  26. end
  27.